How to usethe <strike> Tag in HTML

The <strike> tag is a deprecated HTML tag that was used to mark text with a strikethrough effect. While it is still supported in most browsers, it is recommended to use the <del> or <s> tags instead.

HTML
<!DOCTYPE html>
<html>

<head>
    <title>Deleted Text</title>
</head>

<body>
    <p>This is <strike>deleted</strike> text.</p>
</body>

</html>

Output:

This is deleted text.

How to Mark Deleted Text in HTML?

In HTML, you can mark text as deleted to indicate that it has been removed from the document. This is often displayed with a strikethrough effect. There are different methods to mark deleted text in HTML, including using the <del> tag, the <s> tag, and the <strike> tag.

Table of Content

  • Using the <del> Tag
  • Using the <s> Tag
  • Using the <strike> Tag

Similar Reads

Approach 1: Using the Tag

The tag is used to mark text that has been deleted from the document. By default, browsers typically render text within the tag with a strikethrough effect....

Approach 2: Using the Tag

The tag is a generic tag for strikethrough text, and it can be used to mark deleted text as well....

Approach 3: Using the Tag

The tag is a deprecated HTML tag that was used to mark text with a strikethrough effect. While it is still supported in most browsers, it is recommended to use the or tags instead....